relational database - определение. Что такое relational database
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое relational database - определение

DIGITAL DATABASE WHOSE ORGANIZATION IS BASED ON THE RELATIONAL MODEL OF DATA
RDBMS; Relational DBMS; Relational database management system; Database constraint; Relational databases; Relational Database Management System; RDBMSs; RDBS; Relational database management systems; Relational Databases; TRDBMS; Relational Database Management Systems; PRDBMS; Relational query; Database relational; Relational Database; Truly relational database management system; Relational DB; Constraint (database); Relational database system; Database constraints; Relational instance; History of relational databases; Relational database constraints
  • The general structure of a relational database
Найдено результатов: 697
relational database         
¦ noun Computing a database structured to recognize relations between stored items.
relational database         
<database> (RDBMS - relational database management system) A database based on the relational model developed by E.F. Codd. A relational database allows the definition of data structures, storage and retrieval operations and integrity constraints. In such a database the data and relations between them are organised in tables. A table is a collection of rows or records and each row in a table contains the same fields. Certain fields may be designated as keys, which means that searches for specific values of that field will use indexing to speed them up. Where fields in two different tables take values from the same set, a join operation can be performed to select related records in the two tables by matching values in those fields. Often, but not always, the fields will have the same name in both tables. For example, an "orders" table might contain (customer_id, product_code) pairs and a "products" table might contain (product_code, price) pairs so to calculate a given customer's bill you would sum the prices of all products ordered by that customer by joining on the product-code fields of the two tables. This can be extended to joining multiple tables on multiple fields. Because these relationships are only specified at retreival time, relational databases are classed as dynamic database management system. The first commercial RDBMS was the {Multics Relational Data Store}, first sold in 1978. INGRES, Oracle, Sybase, Inc., Microsoft Access, and Microsoft SQL Server are well-known database products and companies. Others include PostgreSQL, SQL/DS, and RDB. ["Managing Data Bases, Four Critical Factors" Michael M. Gorman, QED Information Sciences, Inc.]. ["An Introduction To Database Systems" (6th ed) C. J. Date, Addison Wesley (an excellent source of detailed info)]. ["An End-User's Guide to Data Base" James Martin, Prentice Hall (excellent place to begin learning about DBMS)]. (2002-06-10)
Relational database         
A relational database is a (most commonly digital) database based on the relational model of data, as proposed by E. F.
relational database management system         
RDBMS         
relational DBMS         
RDBMS         
Relational DataBase Management System (Reference: DBMS, DB)
RDBMS         
¦ abbreviation Computing relational database management system.
Object–relational database         
DATABASE MANAGEMENT SYSTEM
ORDBMS; Object-relational database management system; Object–relational; Object-relational model; Object-relational DBMS; Object-relational dbms; Object relational database; Object-relational database; Object-relational; Object–relational model
An object–relational database (ORD), or object–relational database management system (ORDBMS), is a database management system (DBMS) similar to a relational database, but with an object-oriented database model: objects, classes and inheritance are directly supported in database schemas and in the query language. In addition, just as with pure relational systems, it supports extension of the data model with custom data types and methods.
ORDBMS         
DATABASE MANAGEMENT SYSTEM
ORDBMS; Object-relational database management system; Object–relational; Object-relational model; Object-relational DBMS; Object-relational dbms; Object relational database; Object-relational database; Object-relational; Object–relational model
Object Relational Database Management System (Reference: DBMS, DB)

Википедия

Relational database

A relational database is a (most commonly digital) database based on the relational model of data, as proposed by E. F. Codd in 1970. A system used to maintain relational databases is a relational database management system (RDBMS). Many relational database systems are equipped with the option of using SQL (Structured Query Language) for querying and updating the database.